added samples
[windows-sources.git] / sdk / samples / all in on code / Visual Studio 2008 / CSCOMClient / MainForm.Designer.cs
blob89a02d4dc35d360adbabcc1fd2a1001a010eb7bd
1 namespace CSCOMClient
3 partial class MainForm
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
16 if (disposing && (components != null))
18 components.Dispose();
20 base.Dispose(disposing);
23 #region Windows Form Designer generated code
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
31 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
32 this.axMFCActiveX1 = new AxMFCActiveXLib.AxMFCActiveX();
33 this.groupBox1 = new System.Windows.Forms.GroupBox();
34 this.bnGetFloatProperty = new System.Windows.Forms.Button();
35 this.bnSetFloatProperty = new System.Windows.Forms.Button();
36 this.tbFloatProperty = new System.Windows.Forms.TextBox();
37 this.label1 = new System.Windows.Forms.Label();
38 ((System.ComponentModel.ISupportInitialize)(this.axMFCActiveX1)).BeginInit();
39 this.groupBox1.SuspendLayout();
40 this.SuspendLayout();
41 //
42 // axMFCActiveX1
43 //
44 this.axMFCActiveX1.Enabled = true;
45 this.axMFCActiveX1.Location = new System.Drawing.Point(0, 12);
46 this.axMFCActiveX1.Name = "axMFCActiveX1";
47 this.axMFCActiveX1.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axMFCActiveX1.OcxState")));
48 this.axMFCActiveX1.Size = new System.Drawing.Size(272, 95);
49 this.axMFCActiveX1.TabIndex = 0;
50 this.axMFCActiveX1.FloatPropertyChanging += new AxMFCActiveXLib._DMFCActiveXEvents_FloatPropertyChangingEventHandler(this.axMFCActiveX1_FloatPropertyChanging);
51 //
52 // groupBox1
53 //
54 this.groupBox1.Controls.Add(this.bnGetFloatProperty);
55 this.groupBox1.Controls.Add(this.bnSetFloatProperty);
56 this.groupBox1.Controls.Add(this.tbFloatProperty);
57 this.groupBox1.Controls.Add(this.label1);
58 this.groupBox1.Location = new System.Drawing.Point(12, 113);
59 this.groupBox1.Name = "groupBox1";
60 this.groupBox1.Size = new System.Drawing.Size(250, 64);
61 this.groupBox1.TabIndex = 1;
62 this.groupBox1.TabStop = false;
63 this.groupBox1.Text = "Operation";
64 //
65 // bnGetFloatProperty
66 //
67 this.bnGetFloatProperty.Location = new System.Drawing.Point(211, 28);
68 this.bnGetFloatProperty.Name = "bnGetFloatProperty";
69 this.bnGetFloatProperty.Size = new System.Drawing.Size(33, 23);
70 this.bnGetFloatProperty.TabIndex = 3;
71 this.bnGetFloatProperty.Text = "Get";
72 this.bnGetFloatProperty.UseVisualStyleBackColor = true;
73 this.bnGetFloatProperty.Click += new System.EventHandler(this.bnGetFloatProperty_Click);
74 //
75 // bnSetFloatProperty
76 //
77 this.bnSetFloatProperty.Location = new System.Drawing.Point(179, 28);
78 this.bnSetFloatProperty.Name = "bnSetFloatProperty";
79 this.bnSetFloatProperty.Size = new System.Drawing.Size(32, 23);
80 this.bnSetFloatProperty.TabIndex = 2;
81 this.bnSetFloatProperty.Text = "Set";
82 this.bnSetFloatProperty.UseVisualStyleBackColor = true;
83 this.bnSetFloatProperty.Click += new System.EventHandler(this.bnSetFloatProperty_Click);
84 //
85 // tbFloatProperty
86 //
87 this.tbFloatProperty.Location = new System.Drawing.Point(85, 30);
88 this.tbFloatProperty.MaxLength = 10;
89 this.tbFloatProperty.Name = "tbFloatProperty";
90 this.tbFloatProperty.Size = new System.Drawing.Size(91, 20);
91 this.tbFloatProperty.TabIndex = 1;
92 //
93 // label1
94 //
95 this.label1.AutoSize = true;
96 this.label1.Location = new System.Drawing.Point(7, 33);
97 this.label1.Name = "label1";
98 this.label1.Size = new System.Drawing.Size(72, 13);
99 this.label1.TabIndex = 0;
100 this.label1.Text = "FloatProperty:";
102 // MainForm
104 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
105 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
106 this.ClientSize = new System.Drawing.Size(275, 197);
107 this.Controls.Add(this.groupBox1);
108 this.Controls.Add(this.axMFCActiveX1);
109 this.Name = "MainForm";
110 this.Text = "CSCOMClient";
111 ((System.ComponentModel.ISupportInitialize)(this.axMFCActiveX1)).EndInit();
112 this.groupBox1.ResumeLayout(false);
113 this.groupBox1.PerformLayout();
114 this.ResumeLayout(false);
118 #endregion
120 private AxMFCActiveXLib.AxMFCActiveX axMFCActiveX1;
121 private System.Windows.Forms.GroupBox groupBox1;
122 private System.Windows.Forms.Label label1;
123 private System.Windows.Forms.TextBox tbFloatProperty;
124 private System.Windows.Forms.Button bnGetFloatProperty;
125 private System.Windows.Forms.Button bnSetFloatProperty;